home *** CD-ROM | disk | FTP | other *** search
/ Trusted Irix /B 4.0.4 / Trusted-Irix B-4.0.1.iso / dist / eoe1.idb / usr / include / sys / lvtab.h.z / lvtab.h
C/C++ Source or Header  |  1992-04-03  |  1KB  |  39 lines

  1.  
  2. /**************************************************************************
  3.  *                                      *
  4.  *          Copyright (C) 1989, Silicon Graphics, Inc.          *
  5.  *                                      *
  6.  *  These coded instructions, statements, and computer programs  contain  *
  7.  *  unpublished  proprietary  information of Silicon Graphics, Inc., and  *
  8.  *  are protected by Federal copyright law.  They  may  not be disclosed  *
  9.  *  to  third  parties  or copied or duplicated in any form, in whole or  *
  10.  *  in part, without the prior written consent of Silicon Graphics, Inc.  *
  11.  *                                      *
  12.  **************************************************************************/
  13.  
  14. #ident "$Revision: 1.4 $"
  15.  
  16. /* Structure for representing an /etc/lvtab entry. */
  17. /* Author: Dave Higgen (daveh) @ SGI */
  18.  
  19. #define MAXVNAMELEN     80
  20. #define MAXVDEVNAMELEN     5
  21. #define MAXLVDEVS     40
  22. #define MAXLVGRAN     1024
  23. #define MAXLVKEYLEN    8
  24.  
  25. struct lvtabent    {
  26.  
  27.     char        *devname;    /* volume device name */
  28.     char        *volname;    /* volume name (human-readable) */
  29.     unsigned    stripe;        /* number of ways striped */
  30.     unsigned    gran;        /* granularity of striping */
  31.     unsigned    ndevs;        /* number of constituent devices.
  32.                      * NOTE: this is basic count, NOT
  33.                      * including any mirror devices*/
  34.     int        mindex;        /* index in pathnames where mirror
  35.                      * device pathnames start if present. */
  36.     char        *pathnames[1];    /* pathnames of constituent devices */
  37.     };
  38.  
  39.